/* ===================================================== */
/* RESET GERAL */
/* ===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===================================================== */
/* INTERFACE */
/* ===================================================== */

.interface {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}

/* ===================================================== */
/* BACKGROUND */
/* ===================================================== */

#background {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  z-index: -1;

  background: #000;
}

/* ===================================================== */
/* HEADER */
/* ===================================================== */

header {
  width: 100%;

  padding: 20px 0;

  position: relative;

  z-index: 10;
}

header .interface {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.logo img {
  width: 150px;
}

/* MENU */

header nav ul {
  display: flex;

  gap: 40px;

  list-style: none;
}

header nav ul li a {
  color: #cfcfcf;

  font-size: 16px;

  transition: 0.3s;
}

header nav ul li a:hover {
  color: #b9a564;
}

/* BOTÃO WHATSAPP */

.btn-whatsapp {
  background: #b9a564;

  color: #000;

  padding: 12px 35px;

  border-radius: 30px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: scale(1.05);

  box-shadow: 0 0 20px #b9a564;
}

/* ===================================================== */
/* TÍTULOS DAS SEÇÕES */
/* ===================================================== */

.titulo-secao {
  text-align: center;

  margin-bottom: 70px;
}

.titulo-secao span {
  color: #b9a564;

  font-size: 14px;

  letter-spacing: 3px;
}

.titulo-secao h2 {
  font-size: 42px;

  font-weight: 600;

  margin-top: 15px;

  line-height: 1.2;
}

/* ===================================================== */
/* HERO */
/* ===================================================== */

.hero {
  min-height: 90vh;

  display: flex;

  align-items: center;

  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.9)),
    url("../images/geodos/hero-geodo.jpg");

  background-size: cover;

  background-position: center;
}

.hero-text {
  max-width: 750px;
}

.subtitulo {
  color: #b9a564;

  letter-spacing: 4px;

  font-size: 15px;
}

.hero h1 {
  font-size: 65px;

  line-height: 1.1;

  margin: 25px 0;

  font-weight: 700;
}

.hero p {
  color: #ddd;

  font-size: 18px;

  line-height: 1.8;

  max-width: 650px;
}

/* BOTÕES HERO */

/* =====================================
   CONTAINER
===================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}


/* =====================================
   LUXURY MINIMAL
===================================== */

.luxury-minimal-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    min-width: 270px;

    padding: 14px 4px;

    color: #d8b46a;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.7px;

    text-decoration: none;

    background: transparent;
    border: none;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.35s ease,
        text-shadow 0.35s ease;
}


/* =====================================
   LINHA DOURADA
===================================== */

.luxury-minimal-btn::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: rgba(216, 180, 106, 0.45);

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease;
}


/* =====================================
   LUZ QUE PERCORRE A LINHA
===================================== */

.luxury-minimal-btn::after {
    content: "";

    position: absolute;

    bottom: -1px;
    left: -15%;

    width: 25%;
    height: 3px;

    border-radius: 50%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 220, 130, 0.4),
        #fff1b0,
        rgba(255, 190, 70, 0.7),
        transparent
    );

    filter: blur(1px);

    opacity: 0;

    transition:
        left 0.65s ease,
        opacity 0.3s ease;
}


/* =====================================
   SETA
===================================== */

.luxury-arrow {
    display: inline-block;

    font-size: 23px;
    font-weight: 300;

    color: #d8b46a;

    transition:
        transform 0.35s ease,
        color 0.35s ease,
        text-shadow 0.35s ease;
}


/* =====================================
   HOVER
===================================== */

.luxury-minimal-btn:hover {
    color: #f1cf7a;

    transform: translateY(-2px);

    text-shadow:
        0 0 12px rgba(216, 180, 106, 0.18);
}


.luxury-minimal-btn:hover::before {
    background: rgba(238, 196, 100, 0.85);

    box-shadow:
        0 0 8px rgba(216, 180, 106, 0.25);
}


/* luz atravessa a linha */

.luxury-minimal-btn:hover::after {
    left: 90%;
    opacity: 1;
}


/* seta anda para direita */

.luxury-minimal-btn:hover .luxury-arrow {
    transform: translateX(6px);

    color: #f2cd72;

    text-shadow:
        0 0 10px rgba(216, 180, 106, 0.4);
}


/* =====================================
   EFEITO DURANTE O CLIQUE
===================================== */

.luxury-minimal-btn:active {
    transform:
        translateY(0)
        scale(0.98);
}


/* =====================================
   BOTÃO ATIVADO DEPOIS DO CLIQUE
===================================== */

.luxury-minimal-btn.ativo {
    color: #f5d47f;

    text-shadow:
        0 0 10px rgba(216, 180, 106, 0.25);
}


.luxury-minimal-btn.ativo::before {
    height: 1px;

    background: #e5bd62;

    box-shadow:
        0 0 5px rgba(229, 189, 98, 0.6),
        0 0 14px rgba(229, 189, 98, 0.25);
}


.luxury-minimal-btn.ativo::after {
    left: 40%;

    width: 20%;

    opacity: 0.9;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 210, 100, 0.5),
        #fff2b0,
        rgba(255, 210, 100, 0.5),
        transparent
    );

    filter: blur(1px);
}


.luxury-minimal-btn.ativo .luxury-arrow {
    transform: translateX(8px);

    color: #f5d47f;

    text-shadow:
        0 0 10px rgba(229, 189, 98, 0.45);
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 700px) {

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
    }

    .luxury-minimal-btn {
        width: 100%;
        min-width: 0;

        max-width: 320px;
    }
}


/* ===================================================== */
/* INTRODUÇÃO */
/* ===================================================== */

.introducao {
  padding: 120px 0;
}

.conteudo-intro {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 80px;
}

.conteudo-intro .texto {
  width: 50%;
}

.conteudo-intro .texto p {
  color: #ddd;

  font-size: 17px;

  line-height: 1.9;

  margin-bottom: 25px;

  text-align: justify;
}

.conteudo-intro .imagem {
  width: 50%;
}

.conteudo-intro .imagem img {
  width: 100%;

  border-radius: 25px;

  box-shadow: 0 0 40px rgba(185, 165, 100, 0.25);
}

/* ===================================================== */
/* FORMAÇÃO DOS GEODOS */
/* ===================================================== */

.formacao {
  padding: 120px 0;

  background: linear-gradient(180deg, #000, #080808);
}

.formacao .titulo-secao p {
  color: #ccc;

  max-width: 750px;

  margin: 25px auto;

  line-height: 1.8;
}

.cards-formacao {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(185, 165, 100, 0.25);

  border-radius: 25px;

  padding: 40px 30px;

  text-align: center;

  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);

  border-color: #b9a564;

  box-shadow: 0 0 30px rgba(185, 165, 100, 0.25);
}

.icone {
  font-size: 55px;

  margin-bottom: 25px;
}

.card h3 {
  color: #b9a564;

  font-size: 22px;

  margin-bottom: 20px;
}

.card p {
  color: #ccc;

  line-height: 1.7;

  font-size: 15px;
}

/* ===================================================== */
/* DESTAQUE DO GEODO */
/* ===================================================== */

.destaque-geodo {
  padding: 120px 0;
}

.destaque-geodo .interface {
  display: flex;

  align-items: center;

  gap: 80px;
}

.destaque-geodo .texto {
  flex: 1;
}

.destaque-geodo .texto span {
  color: #b9a564;

  letter-spacing: 3px;

  font-size: 14px;
}

.destaque-geodo h2 {
  font-size: 45px;

  line-height: 1.2;

  margin: 25px 0;
}

.destaque-geodo p {
  color: #ddd;

  line-height: 1.8;

  margin-bottom: 20px;
}

.destaque-geodo .imagem {
  flex: 1;
}

.destaque-geodo img {
  border-radius: 30px;

  box-shadow: 0 0 50px rgba(185, 165, 100, 0.25);
}
/* ===================================================== */
/* TIMELINE */
/* ===================================================== */

.timeline {
  padding: 120px 0;

  background: #050505;
}

.timeline-container {
  position: relative;

  display: flex;

  justify-content: space-between;

  gap: 30px;

  margin-top: 70px;
}

.timeline-container::before {
  content: "";

  position: absolute;

  top: 35px;

  left: 0;

  width: 100%;

  height: 2px;

  background: #b9a564;

  opacity: 0.5;
}

.timeline-item {
  position: relative;

  width: 20%;

  text-align: center;

  z-index: 1;
}

.circle {
  width: 70px;

  height: 70px;

  margin: 0 auto 30px;

  border-radius: 50%;

  background: #000;

  border: 2px solid #b9a564;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #b9a564;

  font-size: 25px;

  font-weight: 600;
}

.timeline-item h3 {
  color: #fff;

  font-size: 22px;

  margin-bottom: 15px;
}

.timeline-item p {
  color: #bbb;

  font-size: 15px;

  line-height: 1.7;
}

/* ===================================================== */
/* BRASIL E OS GEODOS */
/* ===================================================== */

.brasil-geodos {
  padding: 120px 0;
}

.conteudo-brasil {
  display: flex;

  align-items: center;

  gap: 80px;
}

.conteudo-brasil .imagem {
  width: 50%;
}

.conteudo-brasil img {
  width: 100%;

  border-radius: 30px;

  box-shadow: 0 0 40px rgba(185, 165, 100, 0.25);
}

.conteudo-brasil .texto {
  width: 50%;
}

.conteudo-brasil p {
  color: #ddd;

  line-height: 1.9;

  margin-bottom: 25px;

  text-align: justify;
}

/* ===================================================== */
/* CRISTAIS NATURAIS */
/* ===================================================== */

.cristais {
  padding: 120px 0;

  background: #080808;
}

.grid-cristais {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;
}

.cristal-card {
  background: rgba(255, 255, 255, 0.04);

  border-radius: 25px;

  overflow: hidden;

  border: 1px solid rgba(185, 165, 100, 0.25);

  transition: 0.4s;
}

.cristal-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 0 35px rgba(185, 165, 100, 0.3);
}

.cristal-card img {
  width: 100%;

  height: 280px;

  object-fit: cover;
}

.cristal-card h3 {
  color: #b9a564;

  font-size: 25px;

  padding: 25px 25px 10px;
}

.cristal-card p {
  color: #ccc;

  padding: 0 25px 30px;

  line-height: 1.8;

  font-size: 15px;
}

/* ===================================================== */
/* CURIOSIDADES */
/* ===================================================== */

.curiosidades {
  padding: 120px 0;
}

.curiosidades-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.curiosidade {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(185, 165, 100, 0.25);

  padding: 35px 25px;

  border-radius: 25px;

  transition: 0.4s;
}

.curiosidade:hover {
  transform: translateY(-10px);

  border-color: #b9a564;

  box-shadow: 0 0 30px rgba(185, 165, 100, 0.25);
}

.curiosidade h3 {
  color: #b9a564;

  font-size: 20px;

  margin-bottom: 20px;
}

.curiosidade p {
  color: #ccc;

  line-height: 1.8;

  font-size: 15px;
}

/* ===================================================== */
/* GALERIA PREMIUM */
/* ===================================================== */

.galeria {
  padding: 120px 0;

  background: #050505;
}

.galeria .titulo-secao p {
  color: #ccc;

  max-width: 700px;

  margin: 25px auto;

  line-height: 1.8;
}

.galeria-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.foto {
  height: 420px;

  overflow: hidden;

  border-radius: 30px;

  position: relative;
}

.foto img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.foto:hover img {
  transform: scale(1.1);
}

/* ===================================================== */
/* FRASE DE IMPACTO */
/* ===================================================== */

.frase-impacto {
  height: 600px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85)),
    url("../images/geodos/frase-geodo.jpg");

  background-size: cover;

  background-position: center;
}

.overlay-frase {
  position: absolute;

  inset: 0;
}

.texto-impacto {
  position: relative;

  text-align: center;

  max-width: 900px;
}

.texto-impacto h2 {
  font-size: 55px;

  line-height: 1.2;

  font-weight: 700;
}

.texto-impacto p {
  margin-top: 30px;

  font-size: 20px;

  color: #ddd;

  line-height: 1.8;
}

/* ===================================================== */
/* VALLORE LUXURY */
/* ===================================================== */

.vallore {
  padding: 120px 0;
}

.conteudo-vallore {
  max-width: 900px;

  margin: auto;

  text-align: center;
}

.conteudo-vallore span {
  color: #b9a564;

  letter-spacing: 4px;

  font-size: 15px;
}

.conteudo-vallore h2 {
  font-size: 45px;

  line-height: 1.3;

  margin: 30px 0;
}

.conteudo-vallore p {
  color: #ccc;

  font-size: 17px;

  line-height: 1.9;

  margin-bottom: 25px;
}

/* ===================================================== */
/* O TEMPO DA NATUREZA */
/* ===================================================== */

.tempo-natureza {
  height: 650px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.9)),
    url("../images/geodos/tempo-natureza.jpg");

  background-size: cover;

  background-position: center;
}

.overlay-tempo {
  position: absolute;

  inset: 0;
}

.conteudo-tempo {
  position: relative;

  text-align: center;

  z-index: 2;
}

.conteudo-tempo h3 {
  color: #b9a564;

  letter-spacing: 5px;

  font-size: 18px;

  margin-bottom: 30px;
}

.conteudo-tempo h1 {
  font-size: 90px;

  font-weight: 700;

  color: #fff;

  margin-bottom: 25px;
}

.conteudo-tempo p {
  font-size: 22px;

  color: #ddd;

  max-width: 800px;

  margin: auto;

  line-height: 1.7;
}

/* ===================================================== */
/* CHAMADA PARA CATÁLOGO */
/* ===================================================== */

.cta-catalogo {
  padding: 120px 0;

  text-align: center;
}

.cta-catalogo h2 {
  font-size: 45px;

  margin-bottom: 25px;
}

.cta-catalogo p {
  color: #ccc;

  font-size: 18px;

  max-width: 650px;

  margin: 0 auto 40px;

  line-height: 1.8;
}

.btn-colecao {
  display: inline-block;

  background: #b9a564;

  color: #000;

  padding: 16px 45px;

  border-radius: 40px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-colecao:hover {
  transform: scale(1.05);

  box-shadow: 0 0 25px #b9a564;
}

/* ===================================================== */
/* FOOTER */
/* ===================================================== */

footer {
  padding: 70px 0 30px;

  border-top: 1px solid rgba(185, 165, 100, 0.3);

  text-align: center;
}

.footer-logo img {
  width: 180px;

  margin: auto;
}

footer h3 {
  margin-top: 25px;

  font-size: 28px;

  color: #b9a564;
}

footer p {
  color: #aaa;

  margin-top: 10px;
}

.redes {
  margin-top: 30px;

  display: flex;

  justify-content: center;

  gap: 25px;
}

.redes a {
  width: 50px;

  height: 50px;

  border-radius: 50%;

  border: 1px solid #b9a564;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #b9a564;

  font-size: 22px;

  transition: 0.3s;
}

.redes a:hover {
  background: #b9a564;

  color: #000;
}

.copyright {
  margin-top: 40px;

  font-size: 14px;
}

/* ===================================================== */
/* RESPONSIVIDADE */
/* ===================================================== */

@media (max-width: 1020px) {
  header nav {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .conteudo-intro,
  .destaque-geodo .interface,
  .conteudo-brasil {
    flex-direction: column;
  }

  .conteudo-intro .texto,
  .conteudo-intro .imagem,
  .conteudo-brasil .texto,
  .conteudo-brasil .imagem {
    width: 100%;
  }

  .cards-formacao {
    grid-template-columns: 1fr;
  }

  .timeline-container {
    flex-direction: column;
  }

  .timeline-container::before {
    display: none;
  }

  .timeline-item {
    width: 100%;
  }

  .grid-cristais,
  .galeria-grid,
  .curiosidades-grid {
    grid-template-columns: 1fr;
  }

  .texto-impacto h2 {
    font-size: 35px;
  }

  .conteudo-vallore h2 {
    font-size: 32px;
  }

  .conteudo-tempo h1 {
    font-size: 55px;
  }
}

@media (max-width: 600px) {
  .titulo-secao h2 {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero p {
    font-size: 16px;
  }

  .conteudo-tempo h1 {
    font-size: 42px;
  }

  .conteudo-tempo p {
    font-size: 17px;
  }
}
